
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
A simple in-memory filesystem. Holds data in a javascript object.
var MemoryFileSystem = require("memory-fs");
var fs = new MemoryFileSystem(); // Optionally pass a javascript object
fs.mkdirpSync("/a/test/dir");
fs.writeFileSync("/a/test/dir/file.txt", "Hello World");
fs.readFileSync("/a/test/dir/file.txt"); // returns Buffer("Hello World")
// Async variantes too
fs.unlink("/a/test/dir/file.txt", function(err) {
// ...
});
fs.readdirSync("/a/test"); // returns ["dir"]
fs.statSync("/a/test/dir").isDirectory(); // returns true
fs.rmdirSync("/a/test/dir");
fs.mkdirpSync("C:\\use\\windows\\style\\paths");
Copyright (c) 2012-2014 Tobias Koppers
memfs is an in-memory filesystem with the same API as Node.js fs module. It is similar to memory-fs but is actively maintained and has additional features like volume serialization and deserialization.
unionfs allows you to create a union of multiple filesystems. While it can work with in-memory filesystems, it can also combine real filesystems and has a broader scope compared to memory-fs.
mock-fs is a library for mocking the Node.js fs module. It allows you to intercept file system operations and provide custom in-memory implementations. It is primarily used for testing purposes and offers a different approach compared to memory-fs.
FAQs
A simple in-memory filesystem. Holds data in a javascript object.
The npm package memory-fs receives a total of 6,966,164 weekly downloads. As such, memory-fs popularity was classified as popular.
We found that memory-fs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.